Collection Decentraland
提案
疑問
I have a question about Wearable NFT.
Decentraland Wearable is built on an adaptation of Decentraland Avatar, but can it be used with other 3D Blockchain platforms?
Also, it seems to be saved in Decentraland Server as a glTF file, can I download it and change it?
They could be used anywhere, if they were implemented by these platforms. All these files are accessible on our GitHub, you can download and alter them if you wish, but that wont affect the wearable you see in Decentraland itself.
hr.icon
Read
code:tree.sh
//気になるところだけ
.
├── buidler.config.js
├── contracts
│ ├── collections
│ │ └── v2
│ │ ├── ERC721BaseCollectionV2.sol
│ │ └── ERC721CollectionV2.sol
│ ├── commons
│ │ ├── MinimalProxyFactory.sol
│ │ └── OwnableInitializable.sol
│ ├── factories
│ │ └── v2
│ │ └── ERC721CollectionFactoryV2.sol
│ ├── interfaces
│ │ ├── Factory.sol
│ │ ├── IERC20.sol
│ │ ├── IERC721Collection.sol
│ │ └── IERC721CollectionV2.sol
│ ├── libs
│ │ └── String.sol
│ ├── markets
│ │ ├── BurningStore.sol
│ │ ├── Donation.sol
│ │ └── v2
│ │ └── CollectionStore.sol
│ ├── mocks
│ │ ├── DummyBurningStore.sol
│ │ ├── DummyCollectionStore.sol
│ │ ├── DummyDonation.sol
│ │ ├── DummyERC721DeterministicCollection.sol
│ │ ├── DummyERC721MaxIssuanceCollection.sol
│ │ ├── DummyFactory.sol
│ │ └── ProxyRegistry.sol
│ ├── tokens
│ │ ├── ERC721.sol
│ │ └── ERC721Initializable.sol
│ └── utils
│ └── Migrations.sol
├── full
│ ├── BurningStore.sol
│ ├── CollectionStore.sol
│ ├── Donation.sol
│ ├── ERC721CollectionFactoryV2.sol
│ ├── ERC721CollectionV2.sol
│ └── ERC721DeterministicCollection.sol
├── migrations
│ └── 1_initial_migration.js
├── package.json
├── scripts
│ ├── buildfull.sh
│ └── test.sh
├── test
│ ├── helpers
│ │ ├── assertRevert.js
│ │ ├── balanceSnap.js
│ │ ├── baseCollectionV2.js
│ │ ├── collectionV2.js
│ │ └── increase.js
│ └── v2
│ ├── CollectionStore.spec.js
│ ├── ERC721CollectionFactoryV2.spec.js
│ └── ERC721CollectionV2.spec.js
└── truffle-config.js
truffle-config.js
? 形式変わった?
network
いっぱい用意されてる
local,development,ropsten,coverage,ganache,mainet
mainnet